home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual BASIC 5.0 (Ent. Edition) / Vb5ent Extractor.EXE / VB / SAMPLES / COMPTOOL / ACTVCOMP / COFFEE / CO2MOD1.BAS < prev    next >
Encoding:
BASIC Source File  |  1996-11-27  |  854 b   |  22 lines

  1. Attribute VB_Name = "Module1"
  2. Option Explicit
  3. ' > For an overview of this sample application, search
  4. '   online Help for Coffee.
  5. ' > AboutCof.Txt, in the Related Documents folder of
  6. '   CoffWat2.vbp, also contains information about the sample.
  7.  
  8. ' gCoffeeMonitor holds a reference to the shared
  9. ' --------------  CoffeeMonitor object.  When a client
  10. '   accesses the CoffeeMonitor property of a Connector
  11. '   object, the Property Get returns this reference.
  12. '   (See the Connector class module.)
  13. Public gCoffeeMonitor As CoffeeMonitor
  14.  
  15. ' gCoffeeMonitor2 holds a reference to the shared
  16. ' ---------------  CoffeeMonitor2 object.  When a client
  17. '   accesses the CoffeeMonitor2 property of a Connector2
  18. '   object, the Property Get returns this reference.
  19. '   (See the Connector2 class module.)
  20. Public gCoffeeMonitor2 As CoffeeMonitor2
  21.  
  22.